home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000339_jaltman@watsun.cc.columbia.edu_Mon Aug 27 10:38:15 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  55 lines

  1. Article: 12719 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!jaltman
  3. From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: C-Kermit 8.0b02 and Solaris 2.6 problems
  6. Date: 27 Aug 2001 14:17:38 GMT
  7. Organization: Columbia University
  8. Lines: 38
  9. Message-ID: <9mdkq2$426$1@newsmaster.cc.columbia.edu>
  10. References: <3B89FECC.4B399D2E@intin.it>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 998921858 4166 128.59.39.2 (27 Aug 2001 14:17:38 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 27 Aug 2001 14:17:38 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12719
  16.  
  17. In article <3B89FECC.4B399D2E@intin.it>,
  18. Massimo D'Ulisse  <mdulisse@intin.it> wrote:
  19. : For what I'm using it, wermit works fine, except for a couple of things:
  20. :    * I get a segmentation fault when using the show variables at the
  21. :      \v(setlinemsg) line (wermit prints \v(setlinemsg) = Segmentation
  22. :      fault (core dumped). Anyway, It is a minor problem.
  23.  
  24. this implies that the memory pointed to by the variable 'slmsg' is 
  25. unallocated.  We will look into this.
  26.  
  27. :    * during downloads, wermit tries to create temporary files in the
  28. :      /var directory, resulting in 'Permission denied' errors. I used a
  29. :      quick and dirty workaroung, modifying /var permissions, but I
  30. :      cannot use this trick in my production environment. I tried to use
  31. :      both TMP and TEMP env vars, but with no results. So I'd like to fix
  32. :      the problem by modifying the source code and making wermit use /tmp
  33. :      instead of /var. Can I modify the source files, and where should I
  34. :      look into?
  35.  
  36. You can use the command
  37.  
  38.   SET TEMP-DIRECTORY <directory>
  39.  
  40. to specify where temp files should be created.  Or the following environment
  41. variables will be used in order:
  42.  
  43.   CK_TMP
  44.   TMPDIR
  45.   TEMP
  46.   TMP
  47.  
  48. if no environment variable is found the value "/tmp/" is used.
  49.  
  50.  Jeffrey Altman * Sr.Software Designer      C-Kermit 8.0 Beta available
  51.  The Kermit Project @ Columbia University   includes Secure Telnet and FTP
  52.  http://www.kermit-project.org/             using Kerberos, SRP, and 
  53.  kermit-support@kermit-project.org          OpenSSL.  SSH soon to follow.
  54.